home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 3 / Amiga Format CD03 (1996-07-04)(Future Publishing)(GB)(Track 1 of 6)[!][issue 1996-08].iso / pd / utilities / tinymeter / source / tinymeter_main / launchclass.h < prev    next >
C/C++ Source or Header  |  1996-05-20  |  2KB  |  75 lines

  1. #include <utility/tagitem.h>
  2.  
  3. #define lau_up                  0
  4. #define lau_down                1
  5. #define lau_over                2
  6.  
  7. #define lind_realcenter         0
  8. #define lind_center             1
  9. #define lind_left               2
  10. #define lind_right              3
  11.  
  12. #define LAU_TextFont            (TAG_USER + 22 )
  13. #define LAU_TextFormat          (TAG_USER + 23 )
  14. #define LAU_Label               (TAG_USER + 24 )
  15. #define LAU_File                (TAG_USER + 25 )
  16.  
  17. #define LAU_3D                  (TAG_USER + 26)
  18. #define LAU_Border              (TAG_USER + 27)
  19. #define LAU_Background          (TAG_USER + 28)
  20. #define LAU_ShadowLabel         (TAG_USER + 29)
  21.  
  22. #define LAU_List                (TAG_USER + 30)
  23. #define LAU_Down                (TAG_USER + 31)
  24.  
  25. #define LAU_ColLabel            (TAG_USER + 32)
  26. #define LAU_ColEntry            (TAG_USER + 33)
  27. #define LAU_ColHalfBright       (TAG_USER + 34)
  28. #define LAU_ColHalfShadow       (TAG_USER + 35)
  29. #define LAU_ColCursor           (TAG_USER + 36)
  30. #define LAU_ColBrightEdg        (TAG_USER + 37)
  31. #define LAU_ColDarkEdg          (TAG_USER + 38)
  32. #define LAU_ColBackground       (TAG_USER + 39)
  33.  
  34. #define LAU_Screen              (TAG_USER + 40)
  35. #define LAU_Indent              (TAG_USER + 41)
  36.  
  37. #define LAU_Type                (TAG_USER + 42)
  38. #define LAU_ImgHeight           (TAG_USER + 43)
  39. #define LAU_XPos                (TAG_USER + 44)
  40. #define LAU_Transparent         (TAG_USER + 45)
  41.  
  42. #define LAU_UsedColors  8
  43.  
  44. struct  LAU_Color
  45. {
  46.     UWORD   pen;
  47.     ULONG   red;
  48.     ULONG   green;
  49.     ULONG   blue;
  50. };
  51.  
  52. struct  GAU_Color
  53. {
  54.     UWORD   pen;
  55.     ULONG   red;
  56.     ULONG   green;
  57.     ULONG   blue;
  58. };
  59.  
  60.  
  61. struct lau_entry
  62. {
  63.     struct lau_entry   *next;
  64.     char               *lau_lbl;
  65.     char               *lau_cmd;
  66.     char               *lau_pth;
  67.     char               *lau_out;
  68.     UWORD               lau_type;
  69.     ULONG               lau_stack;
  70.     UWORD               width;
  71.     UWORD               height;
  72.     Object             *img;
  73. };
  74.  
  75.